c16137fabe3c9f6d0524c323f0cb99a26f927352,portal-impl/src/com/liferay/portlet/wsrpconsumeradmin/WSRPConsumerAdminPortlet.java,WSRPConsumerAdminPortlet,processAction,#ActionRequest#ActionResponse#,48
Before Change
ActionRequest actionRequest, ActionResponse actionResponse)
throws PortletException {
super.processAction(actionRequest, actionResponse);
int action = ParamUtil.getInteger(actionRequest, "action");
After Change
String paramAction = ParamUtil.getString(actionRequest, "action", null);
if (Validator.isNotNull(paramAction)) {
super.processAction(actionRequest, actionResponse);
}
int action = ParamUtil.getInteger(actionRequest, "action");